home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / sound / mtrs_v2_demo / install_mtrs_v2d_demo next >
Text File  |  1999-11-29  |  3KB  |  98 lines

  1.  
  2. ; Installer-Script MTRS_V2_DEMO A.Sprenger 1999
  3.  
  4. (set @askdefault "Work:")
  5. (set @askhelp "\n  Bitte wählen Sie ein Verzeichnis,\n  in welches MTRS_V2_DEMO kopiert werden soll.")
  6. (set @askprompt "Verzeichnisangabe für MTRS_V2_DEMO\n")
  7. (set @bad-kick "MTRS benötigt mindestens\nKickstart 2.0 !")
  8.  
  9. (if (< (/ (getversion) 65536) 37)
  10.     (abort @bad-kick)
  11. )
  12.  
  13. (welcome)
  14. (message "\n\n\nDieses Script installiert\nMTRS_V2_DEMO\nauf Ihre Festplatte.")
  15. (complete 0)
  16. (set @destination (askdir (prompt @askprompt)
  17.               (help @askhelp)
  18.           (default @askdefault)
  19.           )
  20.     )
  21.  
  22. (set @destination (expandpath @destination))
  23. (set @destination (tackon @destination "MTRS"))
  24. (copyfiles (prompt "Kopiervorgang")
  25.        (help "")
  26.        (source "")
  27.        (dest @destination)
  28.        (infos)
  29.        (pattern "MTRS_V2D_DEMO")
  30.       )
  31. (complete 40)
  32. (copyfiles (prompt "Kopiervorgang")
  33.        (help "Möchten Sie die Anleitung kopieren ?")
  34.        (source "")
  35.        (dest @destination)
  36.        (infos)
  37.        (confirm)
  38.        (pattern "MTRS_V2_Anleitung")
  39.       )
  40. (complete 50)
  41. (set @destination (tackon @destination "HDR"))
  42. (makedir @destination)
  43.  
  44. (set changechoice
  45.                   (askchoice
  46.                              (prompt "MTRS benötigt das logische Gerät >HDR:<.\nWenn es beim Start des Rechners automatisch\neingerichtet werden soll,wählen Sie bitte >User-Startup verändern<")
  47.                  (help "MTRS V2 benötigt HDR: nicht zwingend")
  48.                  (choices "User-Startup verändern" "Diesen Teil überspringen")
  49.                 )
  50.          )
  51. (if (not changechoice)
  52.     (startup "MTRS" (prompt "Es wird die User-Startup verändert.")
  53.                 (help "")
  54.                 (command "ASSIGN HDR: " (expandpath (@destination)))
  55.                    )
  56.     )
  57. (complete 60)
  58.  
  59. (set @destination "FONTS:")
  60.  
  61. (copyfiles (prompt "Kopiervorgang")
  62.        (help "")
  63.        (source "")
  64.        (dest @destination)
  65.        (pattern "MTRS")
  66.       )
  67. (complete 70)
  68. (copyfiles (prompt "Kopiervorgang")
  69.        (help "")
  70.        (source "")
  71.        (dest @destination)
  72.        (pattern "MTRS.font")
  73.       )
  74. (complete 80)
  75. (set @destination "C:")
  76.  
  77. (copyfiles (prompt "Kopiervorgang")
  78.        (help "")
  79.        (source "")
  80.        (dest @destination)
  81.        (pattern "MTRSDEMOPlayer.TSK")
  82.       )
  83. (complete 90)
  84. (set @destination "S:")
  85.  
  86. (copyfiles (prompt "Kopiervorgang")
  87.        (help "")
  88.        (source "")
  89.        (dest @destination)
  90.        (pattern "MTRS.prefs")
  91.       )
  92. (complete 100)
  93.  
  94. (message "Die Installation ist abgeschlossen. Zur Programmbedienung und Registrierung lesen Sie bitte die beigefügte Anleitung im Amiga-Guide-Format.\nViel Spaß wünscht A.Sprenger.\nBitte starten Sie Ihren Rechner neu.")
  95.  
  96.  
  97.  
  98.